home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Very Best of Atari Inside
/
The Very Best of Atari Inside 1.iso
/
mint
/
mntlib43
/
mntlib
/
strrchr.c
< prev
next >
Wrap
C/C++ Source or Header
|
1993-05-23
|
663b
|
35 lines
/* from Henry Spencer's stringlib */
#include <string.h>
/*
* strrchr - find last occurrence of a character in a string
*/
#ifdef __GNUC__
asm(".stabs \"_rindex\",5,0,0,_strrchr"); /* dept of clean tricks */
#else
char *
rindex(s, charwanted)
const char *s;
int charwanted;
{
return strrchr(s, charwanted);
}
#endif
char * /* found char, or NULL if none */
strrchr(s, charwanted)
const char *s;
register int charwanted;
{
register char c;
register const char *place;
place = NULL;
while ((c = *s++) != 0)
if (c == (char) charwanted)
place = s - 1;
if ((char) charwanted == '\0')
return((char *)--s);
return (char *)place;
}